home *** CD-ROM | disk | FTP | other *** search
/ Aminet 43 / Aminet 43 (2001)(GTI - Schatztruhe)[!][Jun 2001].iso / Aminet / dev / asm / AsmPro.readme < prev    next >
Text File  |  2001-05-03  |  5KB  |  191 lines

  1. Short:    Asm-Pro V1.16i mc680x0 macro assembler
  2. Author:   solognt@worldonline.nl (Solo/Genetic)
  3. Uploader: solognt@worldonline.nl (Solo)
  4. Version:  1.16i
  5. Type:     dev/asm
  6.  
  7. Asm-Pro is a mc680x0/6888x/68851 macro assembler/disassembler/linker with 
  8. integrated editor, monitor and debugger.
  9.  
  10. With Asm-Pro you have a complete package for writing assembler programs on your 
  11. Amiga. Asm-Pro is simular to asm-one but has new and improved functionality
  12. including gfx-card compatiblity.
  13.  
  14. Requirements:
  15.  
  16.  - An Amiga
  17.  - Kickstart 2.04+
  18.  - ReqTools.library (Try Aminet)
  19.  
  20.  
  21. The source for Asm-Pro is available from my homepage for those who
  22. are interested in helping out with the development..
  23.  
  24.  http://asmpro.surf.to
  25.  
  26.  
  27. Join our Asm-Pro mailing list for support on the development of Asm-Pro!
  28.  
  29.  Subscribe: Asmpro_dev-subscribe@yahoogroups.com
  30.  URL to discussion page: http://groups.yahoo.com/group/Asmpro_dev
  31.  
  32.  
  33.  
  34. HISTORY:
  35.  
  36. ================= Asm-Pro V1.16i (24-02-2001) =======================
  37.  
  38. People contributing to this opensource release:
  39. - Aske Simon Christensen aka Blueberry
  40. - Franck "Flasher Jack" Charlet.
  41.  
  42. Blueberry:
  43. ---------
  44. [FIX]    Fixed the "sticky" cursor problem in the editor.
  45. [FIX]    Instructions like bfexts d0{13:28},d2 are legal and therefor
  46.     do not generate errors anymore.
  47.  
  48. Flasher Jack:
  49. ------------
  50. [NEW]    Added a most recent files list (only for source files).
  51.  
  52. [FIX]    On Ctrl+V (paste) command: editor's line number trashed.
  53. [FIX]    Changed "AU" (Auto Update) to "AS" in prefs to avoid conflict with
  54.     Update Check.
  55.  
  56. Solo:
  57. ----
  58. [NEW]    There is now an Asm-Pro developers mailing list!
  59.  
  60.  
  61.  
  62. ================= Asm-Pro V1.16h (04-02-2001) =======================
  63.  
  64. People contributing to this opensource release:
  65. - Boussh
  66. - Franck "Flasher Jack" Charlet.
  67. - Solo
  68.  
  69. Boussh:
  70. -------
  71. [FIX]    Fixed disassembler crashes for some (illegal) opcodes.. (jaja beter laat dan nooit he :)
  72.  
  73. Flasher Jack:
  74. ----
  75. [SRC]    Changed system equ's to includes.
  76.  
  77. [FIX]    Comment block won't trash line number anymore.
  78. [FIX]    File >=100k displayed correctly in V command.
  79. [FIX]    Won't display FastMem in AllocWorkSpace window
  80.     if there's no FastMem present (A BIIIG ONE!).
  81. [FIX]    When assembling with no errors editor line number trashed.
  82. [FIX]    Select a font and then Canceling the prefs window won't
  83.     trash the screen anymore.
  84. [FIX]    BootBlock simulator now jumps to Address+12.
  85.  
  86. [NEW]    AutoUpdate option before Jump or Go added in env. prefs.
  87. [NEW]    BootBlock simulator menu entry.
  88. [NEW]    'Select all' option in editor.
  89.  
  90.  
  91. [NEW]    'Tabulate' option in editor.
  92. [NEW]    'Spaces to tabs' option in editor.
  93. [NEW]    Insert disassembly: labels extended to 32 bits.
  94. [NEW]    RegsData file can be also found in S:
  95.  
  96.  
  97. Solo:
  98. -----
  99. [SRC]    Source reconstruction.
  100.  
  101. ================= Asm-Pro V1.16g (08-08-2000) =======================
  102.  
  103. People contributing to this release:
  104. - Aske Simon Christensen aka Blueberry
  105. - Solo
  106.  
  107. Blueberry:
  108. ----------
  109. [FIX]    Pflusha warnings changed from 851/030 only to 851/030+
  110. [FIX]    Nested REPTs work again. It crashed previously.
  111. [FIX]    REPT 0 now skips its contents, instead of crashing.
  112. [FIX]    '<' in expressions was unsigned less than or equal instead of
  113.     signed less than, as it should be.
  114. [FIX]    Float values can now be raised to nonpositive exponents
  115.  
  116. Solo:
  117. -----
  118. [NEW]    Added an editor function to change hexnumbers to ascii (Amiga+h)
  119.     Set the cursor on top of the '$' and press Amiga+h and presto the
  120.     number changes into an ascii value string.. 
  121.  
  122. eg.
  123.  dc.l $534F4C4F
  124.  
  125. will change into:
  126.  dc.l "SOLO"
  127.  
  128.  
  129. A more extensive example:
  130.  
  131. checksize:
  132.     moveq   #0,d6
  133.     move    (a3)+,d0
  134.     and     d4,d0
  135.     cmp     #$C057,d0
  136.     beq.b   .wordsize
  137.     cmp     #$C04C,d0
  138.     beq.b   .longsize
  139.     cmp     #$C042,d0
  140.     beq     ERROR_IllegalSize
  141.     bra     HandleMacroos
  142.  
  143. can be changed into:
  144.  
  145. checksize:
  146.         moveq   #0,d6
  147.         move    (a3)+,d0
  148.         and     d4,d0
  149.         cmp     #"@W"+$8000,d0
  150.         beq.b   .wordsize
  151.         cmp     #"@L"+$8000,d0
  152.         beq.b   .longsize
  153.         cmp     #"@B"+$8000,d0
  154.         beq     ERROR_IllegalSize
  155.         bra     HandleMacroos
  156.  
  157. which is a lot more readable..
  158.  
  159. ================= Asm-Pro V1.16f (04-03-2000) =======================
  160. [First OpenSource Release]
  161.  
  162. Source code of Asm-Pro is now available as OpenSource. Check out the
  163. Website for more details (http://surf.to/asmpro)..
  164.  
  165. - Fixed autoscroll problem when screensize was bigger than the screenmode size.
  166. - Fixed warning for pmove.l TC,xx
  167.  
  168.  
  169. --
  170.  Http://surf.to/asmpro
  171.  
  172.  
  173. ============================= Archive contents =============================
  174.  
  175. Original  Packed Ratio    Date     Time    Name
  176. -------- ------- ----- --------- --------  -------------
  177.     4404    1983 54.9% 25-Feb-01 19:36:46  AsmPro.readme
  178.      572     309 45.9% 25-Feb-01 19:36:46  AsmPro.readme.info
  179.   211572  104290 50.7% 25-Feb-01 18:53:42 +Asm-Pro
  180.    42852   16052 62.5% 19-Jul-99 13:28:38 +Asm-Pro.guide
  181.     1617     601 62.8% 10-Apr-98 22:02:06 +Asm-Pro.guide.info
  182.     1223     675 44.8% 25-Apr-98 15:10:32 +Asm-Pro.info
  183.    16826    6742 59.9% 25-Feb-01 19:39:12 +Asm-Pro_History.txt
  184.     1265     693 45.2% 05-Mar-80 12:18:14 +Asm-Pro_OpenSource.readme
  185.     9965    9965  0.0% 25-Mar-98 05:03:54 +genetic.gif
  186.   101864   26763 73.7% 21-Dec-92 18:00:18 +RegsData
  187.      584     268 54.1% 25-Feb-01 19:17:14  file_id.diz
  188.      571     307 46.2% 25-Feb-01 19:17:14  file_id.diz.info
  189. -------- ------- ----- --------- --------
  190.   393315  168648 57.1% 06-Mar-101 20:52:36   12 files
  191.